From b9a4b5011e4804cc372fe3cba4b45ebb3ccac489 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 2 Mar 1993 07:26:43 +0000 Subject: [PATCH] * hexl.el (hexl-mode-map): When initializing, remember that the argument to key-binding is a key sequence, not a single key. --- lisp/hexl.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/hexl.el b/lisp/hexl.el index f9e564f3fa2..a38e12366ee 100644 --- a/lisp/hexl.el +++ b/lisp/hexl.el @@ -586,7 +586,7 @@ You may also type up to 3 octal digits, to insert a character with that code" (define-key hexl-mode-map "\C-e" 'hexl-end-of-line) (define-key hexl-mode-map "\C-f" 'hexl-forward-char) - (if (not (eq (key-binding help-char) 'help-command)) + (if (not (eq (key-binding (char-to-string help-char)) 'help-command)) (define-key hexl-mode-map help-char 'undefined)) (define-key hexl-mode-map "\C-i" 'hexl-self-insert-command) -- 2.30.2